home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / FLTK-1.0.6 / src / fl_diamond_box.cxx < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-07  |  2.8 KB  |  79 lines

  1. //
  2. // "$Id: fl_diamond_box.cxx,v 1.5 1999/01/07 19:17:37 mike Exp $"
  3. //
  4. // Diamond box code for the Fast Light Tool Kit (FLTK).
  5. //
  6. // Copyright 1998-1999 by Bill Spitzak and others.
  7. //
  8. // This library is free software; you can redistribute it and/or
  9. // modify it under the terms of the GNU Library General Public
  10. // License as published by the Free Software Foundation; either
  11. // version 2 of the License, or (at your option) any later version.
  12. //
  13. // This library is distributed in the hope that it will be useful,
  14. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. // Library General Public License for more details.
  17. //
  18. // You should have received a copy of the GNU Library General Public
  19. // License along with this library; if not, write to the Free Software
  20. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  21. // USA.
  22. //
  23. // Please report all bugs and problems to "fltk-bugs@easysw.com".
  24. //
  25.  
  26. // Box drawing code for an obscure box type.
  27. // These box types are in seperate files so they are not linked
  28. // in if not used.
  29.  
  30. // The diamond box draws best if the area is square!
  31.  
  32. #include <FL/Fl.H>
  33. #include <FL/fl_draw.H>
  34.  
  35. extern uchar* fl_gray_ramp();
  36.  
  37. static void fl_diamond_up_box(int x,int y,int w,int h,Fl_Color bgcolor) {
  38.   w &= -2;
  39.   h &= -2;
  40.   int x1 = x+w/2;
  41.   int y1 = y+h/2;
  42.   fl_color(bgcolor); fl_polygon(x+3, y1, x1,y+3, x+w-3,y1, x1,y+h-3);
  43.   uchar *g = fl_gray_ramp();
  44.   fl_color(g['W']); fl_line(x+1, y1, x1, y+1, x+w-1, y1);
  45.   fl_color(g['U']); fl_line(x+2, y1, x1, y+2, x+w-2, y1);
  46.   fl_color(g['S']); fl_line(x+3, y1, x1, y+3, x+w-3, y1);
  47.   fl_color(g['P']); fl_line(x+3, y1, x1, y+h-3, x+w-3, y1);
  48.   fl_color(g['N']); fl_line(x+2, y1, x1, y+h-2, x+w-2, y1);
  49.   fl_color(g['H']); fl_line(x+1, y1, x1, y+h-1, x+w-1, y1);
  50.   fl_color(g['A']); fl_loop(x, y1, x1, y, x+w, y1, x1, y+h);
  51. }
  52.  
  53. static void fl_diamond_down_box(int x,int y,int w,int h,Fl_Color bgcolor) {
  54.   w &= -2;
  55.   h &= -2;
  56.   int x1 = x+w/2;
  57.   int y1 = y+h/2;
  58.   uchar *g = fl_gray_ramp();
  59.   fl_color(g['P']); fl_line(x+0, y1, x1, y+0, x+w-0, y1);
  60.   fl_color(g['N']); fl_line(x+1, y1, x1, y+1, x+w-1, y1);
  61.   fl_color(g['H']); fl_line(x+2, y1, x1, y+2, x+w-2, y1);
  62.   fl_color(g['W']); fl_line(x+2, y1, x1, y+h-2, x+w-2, y1);
  63.   fl_color(g['U']); fl_line(x+1, y1, x1, y+h-1, x+w-1, y1);
  64.   fl_color(g['S']); fl_line(x+0, y1, x1, y+h-0, x+w-0, y1);
  65.   fl_color(bgcolor); fl_polygon(x+3, y1, x1,y+3, x+w-3,y1, x1,y+h-3);
  66.   fl_color(g['A']); fl_loop(x+3, y1, x1, y+3, x+w-3, y1, x1, y+h-3);
  67. }
  68.  
  69. extern void fl_internal_boxtype(Fl_Boxtype, Fl_Box_Draw_F*);
  70. Fl_Boxtype define_FL_DIAMOND_BOX() {
  71.   fl_internal_boxtype(_FL_DIAMOND_DOWN_BOX, fl_diamond_down_box);
  72.   fl_internal_boxtype(_FL_DIAMOND_UP_BOX,fl_diamond_up_box);
  73.   return _FL_DIAMOND_UP_BOX;
  74. }
  75.  
  76. //
  77. // End of "$Id: fl_diamond_box.cxx,v 1.5 1999/01/07 19:17:37 mike Exp $".
  78. //
  79.